Version

AddCurve(PointF[],Int32,Int32,Single) Method

Adds a spline curve to the current figure.
Syntax
'Declaration
 
Public Overloads Sub AddCurve( _
   ByVal points() As PointF, _
   ByVal offset As Integer, _
   ByVal numberOfSegments As Integer, _
   ByVal tension As Single _
) 
public void AddCurve( 
   PointF[] points,
   int offset,
   int numberOfSegments,
   float tension
)

Parameters

points
An array of System.Drawing.PointF structures that represents the points that define the curve.
offset
The index of the element in the points array that is used as the first point in the curve.
numberOfSegments
The number of segments used to draw the curve. A segment can be thought of as a line connecting two points.
tension
A value that specifies the amount that the curve bends between control points. Values greater than 1 produce unpredictable results.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also